home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2002 November / SGI Freeware 2002 November - Disc 1.iso / dist / fw_apache.idb / usr / freeware / apache / etc / httpd.conf.default.z / httpd.conf.default
Text File  |  2002-07-08  |  48KB  |  1,311 lines

  1. ##
  2. ## httpd.conf -- Apache HTTP server configuration file
  3. ##
  4.  
  5. #
  6. # Based upon the NCSA server configuration files originally by Rob McCool.
  7. #
  8. # This is the main Apache server configuration file.  It contains the
  9. # configuration directives that give the server its instructions.
  10. # See <URL:http://www.apache.org/docs/> for detailed information about
  11. # the directives.
  12. #
  13. # Do NOT simply read the instructions in here without understanding
  14. # what they do.  They're here only as hints or reminders.  If you are unsure
  15. # consult the online docs. You have been warned.  
  16. #
  17. # After this file is processed, the server will look for and process
  18. # /usr/freeware/apache/conf/srm.conf and then /usr/freeware/apache/conf/access.conf
  19. # unless you have overridden these with ResourceConfig and/or
  20. # AccessConfig directives here.
  21. #
  22. # The configuration directives are grouped into three basic sections:
  23. #  1. Directives that control the operation of the Apache server process as a
  24. #     whole (the 'global environment').
  25. #  2. Directives that define the parameters of the 'main' or 'default' server,
  26. #     which responds to requests that aren't handled by a virtual host.
  27. #     These directives also provide default values for the settings
  28. #     of all virtual hosts.
  29. #  3. Settings for virtual hosts, which allow Web requests to be sent to
  30. #     different IP addresses or hostnames and have them handled by the
  31. #     same Apache server process.
  32. #
  33. # Configuration and logfile names: If the filenames you specify for many
  34. # of the server's control files begin with "/" (or "drive:/" for Win32), the
  35. # server will use that explicit path.  If the filenames do *not* begin
  36. # with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
  37. # with ServerRoot set to "/usr/local/apache" will be interpreted by the
  38. # server as "/usr/local/apache/logs/foo.log".
  39. #
  40.  
  41. ### Section 1: Global Environment
  42. #
  43. # The directives in this section affect the overall operation of Apache,
  44. # such as the number of concurrent requests it can handle or where it
  45. # can find its configuration files.
  46. #
  47.  
  48. #
  49. # ServerType is either inetd, or standalone.  Inetd mode is only supported on
  50. # Unix platforms.
  51. #
  52. ServerType standalone
  53.  
  54. #
  55. # ServerRoot: The top of the directory tree under which the server's
  56. # configuration, error, and log files are kept.
  57. #
  58. # NOTE!  If you intend to place this on an NFS (or otherwise network)
  59. # mounted filesystem then please read the LockFile documentation
  60. # (available at <URL:http://www.apache.org/docs/mod/core.html#lockfile>);
  61. # you will save yourself a lot of trouble.
  62. #
  63. ServerRoot "/usr/freeware/apache"
  64.  
  65. #
  66. # The LockFile directive sets the path to the lockfile used when Apache
  67. # is compiled with either USE_FCNTL_SERIALIZED_ACCEPT or
  68. # USE_FLOCK_SERIALIZED_ACCEPT. This directive should normally be left at
  69. # its default value. The main reason for changing it is if the logs
  70. # directory is NFS mounted, since the lockfile MUST BE STORED ON A LOCAL
  71. # DISK. The PID of the main server process is automatically appended to
  72. # the filename. 
  73. #
  74. #LockFile /usr/freeware/apache/var/run/httpd.lock
  75.  
  76. #
  77. # PidFile: The file in which the server should record its process
  78. # identification number when it starts.
  79. #
  80. PidFile /usr/freeware/apache/var/run/httpd.pid
  81.  
  82. #
  83. # ScoreBoardFile: File used to store internal server process information.
  84. # Not all architectures require this.  But if yours does (you'll know because
  85. # this file will be  created when you run Apache) then you *must* ensure that
  86. # no two invocations of Apache share the same scoreboard file.
  87. #
  88. ScoreBoardFile /usr/freeware/apache/var/run/httpd.scoreboard
  89.  
  90. #
  91. # In the standard configuration, the server will process httpd.conf (this 
  92. # file, specified by the -f command line option), srm.conf, and access.conf 
  93. # in that order.  The latter two files are now distributed empty, as it is 
  94. # recommended that all directives be kept in a single file for simplicity.  
  95. # The commented-out values below are the built-in defaults.  You can have the 
  96. # server ignore these files altogether by using "/dev/null" (for Unix) or
  97. # "nul" (for Win32) for the arguments to the directives.
  98. #
  99. #ResourceConfig conf/srm.conf
  100. #AccessConfig conf/access.conf
  101.  
  102. #
  103. # Timeout: The number of seconds before receives and sends time out.
  104. #
  105. Timeout 300
  106.  
  107. #
  108. # KeepAlive: Whether or not to allow persistent connections (more than
  109. # one request per connection). Set to "Off" to deactivate.
  110. #
  111. KeepAlive On
  112.  
  113. #
  114. # MaxKeepAliveRequests: The maximum number of requests to allow
  115. # during a persistent connection. Set to 0 to allow an unlimited amount.
  116. # We recommend you leave this number high, for maximum performance.
  117. #
  118. MaxKeepAliveRequests 100
  119.  
  120. #
  121. # KeepAliveTimeout: Number of seconds to wait for the next request from the
  122. # same client on the same connection.
  123. #
  124. KeepAliveTimeout 15
  125.  
  126. #
  127. # Server-pool size regulation.  Rather than making you guess how many
  128. # server processes you need, Apache dynamically adapts to the load it
  129. # sees --- that is, it tries to maintain enough server processes to
  130. # handle the current load, plus a few spare servers to handle transient
  131. # load spikes (e.g., multiple simultaneous requests from a single
  132. # Netscape browser).
  133. #
  134. # It does this by periodically checking how many servers are waiting
  135. # for a request.  If there are fewer than MinSpareServers, it creates
  136. # a new spare.  If there are more than MaxSpareServers, some of the
  137. # spares die off.  The default values are probably OK for most sites.
  138. #
  139. MinSpareServers 5
  140. MaxSpareServers 10
  141.  
  142. #
  143. # Number of servers to start initially --- should be a reasonable ballpark
  144. # figure.
  145. #
  146. StartServers 5
  147.  
  148. #
  149. # Limit on total number of servers running, i.e., limit on the number
  150. # of clients who can simultaneously connect --- if this limit is ever
  151. # reached, clients will be LOCKED OUT, so it should NOT BE SET TOO LOW.
  152. # It is intended mainly as a brake to keep a runaway server from taking
  153. # the system with it as it spirals down...
  154. #
  155. MaxClients 150
  156.  
  157. #
  158. # MaxRequestsPerChild: the number of requests each child process is
  159. # allowed to process before the child dies.  The child will exit so
  160. # as to avoid problems after prolonged use when Apache (and maybe the
  161. # libraries it uses) leak memory or other resources.  On most systems, this
  162. # isn't really needed, but a few (such as Solaris) do have notable leaks
  163. # in the libraries. For these platforms, set to something like 10000
  164. # or so; a setting of 0 means unlimited.
  165. #
  166. # NOTE: This value does not include keepalive requests after the initial
  167. #       request per connection. For example, if a child process handles
  168. #       an initial request and 10 subsequent "keptalive" requests, it
  169. #       would only count as 1 request towards this limit.
  170. #
  171. MaxRequestsPerChild 0
  172.  
  173. #
  174. # Listen: Allows you to bind Apache to specific IP addresses and/or
  175. # ports, in addition to the default. See also the <VirtualHost>
  176. # directive.
  177. #
  178. #Listen 3000
  179. #Listen 12.34.56.78:80
  180.  
  181. #
  182. # BindAddress: You can support virtual hosts with this option. This directive
  183. # is used to tell the server which IP address to listen to. It can either
  184. # contain "*", an IP address, or a fully qualified Internet domain name.
  185. # See also the <VirtualHost> and Listen directives.
  186. #
  187. #BindAddress *
  188.  
  189. #
  190. # Dynamic Shared Object (DSO) Support
  191. #
  192. # To be able to use the functionality of a module which was built as a DSO you
  193. # have to place corresponding `LoadModule' lines at this location so the
  194. # directives contained in it are actually available _before_ they are used.
  195. # Please read the file http://httpd.apache.org/docs/dso.html for more
  196. # details about the DSO mechanism and run `httpd -l' for the list of already
  197. # built-in (statically linked and thus always available) modules in your httpd
  198. # binary.
  199. #
  200. # Note: The order in which modules are loaded is important.  Don't change
  201. # the order below without expert advice.
  202. #
  203. # Example:
  204. # LoadModule foo_module libexec/mod_foo.so
  205. LoadModule mmap_static_module libexec/mod_mmap_static.so
  206. LoadModule vhost_alias_module libexec/mod_vhost_alias.so
  207. LoadModule env_module         libexec/mod_env.so
  208. LoadModule define_module      libexec/mod_define.so
  209. LoadModule config_log_module  libexec/mod_log_config.so
  210. LoadModule mime_magic_module  libexec/mod_mime_magic.so
  211. LoadModule mime_module        libexec/mod_mime.so
  212. LoadModule negotiation_module libexec/mod_negotiation.so
  213. LoadModule status_module      libexec/mod_status.so
  214. LoadModule info_module        libexec/mod_info.so
  215. LoadModule includes_module    libexec/mod_include.so
  216. LoadModule autoindex_module   libexec/mod_autoindex.so
  217. LoadModule dir_module         libexec/mod_dir.so
  218. LoadModule cgi_module         libexec/mod_cgi.so
  219. LoadModule asis_module        libexec/mod_asis.so
  220. LoadModule imap_module        libexec/mod_imap.so
  221. LoadModule action_module      libexec/mod_actions.so
  222. LoadModule speling_module     libexec/mod_speling.so
  223. LoadModule userdir_module     libexec/mod_userdir.so
  224. LoadModule alias_module       libexec/mod_alias.so
  225. LoadModule rewrite_module     libexec/mod_rewrite.so
  226. LoadModule access_module      libexec/mod_access.so
  227. LoadModule auth_module        libexec/mod_auth.so
  228. LoadModule anon_auth_module   libexec/mod_auth_anon.so
  229. LoadModule dbm_auth_module    libexec/mod_auth_dbm.so
  230. LoadModule digest_module      libexec/mod_digest.so
  231. LoadModule proxy_module       libexec/libproxy.so
  232. LoadModule cern_meta_module   libexec/mod_cern_meta.so
  233. LoadModule expires_module     libexec/mod_expires.so
  234. LoadModule headers_module     libexec/mod_headers.so
  235. LoadModule usertrack_module   libexec/mod_usertrack.so
  236. LoadModule unique_id_module   libexec/mod_unique_id.so
  237. LoadModule setenvif_module    libexec/mod_setenvif.so
  238. <IfDefine SSL>
  239. LoadModule ssl_module         libexec/mod_ssl.so
  240. </IfDefine>
  241.  
  242. #  Reconstruction of the complete module list from all available modules
  243. #  (static and shared ones) to achieve correct module execution order.
  244. #  [WHENEVER YOU CHANGE THE LOADMODULE SECTION ABOVE UPDATE THIS, TOO]
  245. ClearModuleList
  246. AddModule mod_mmap_static.c
  247. AddModule mod_vhost_alias.c
  248. AddModule mod_env.c
  249. AddModule mod_define.c
  250. AddModule mod_log_config.c
  251. AddModule mod_mime_magic.c
  252. AddModule mod_mime.c
  253. AddModule mod_negotiation.c
  254. AddModule mod_status.c
  255. AddModule mod_info.c
  256. AddModule mod_include.c
  257. AddModule mod_autoindex.c
  258. AddModule mod_dir.c
  259. AddModule mod_cgi.c
  260. AddModule mod_asis.c
  261. AddModule mod_imap.c
  262. AddModule mod_actions.c
  263. AddModule mod_speling.c
  264. AddModule mod_userdir.c
  265. AddModule mod_alias.c
  266. AddModule mod_rewrite.c
  267. AddModule mod_access.c
  268. AddModule mod_auth.c
  269. AddModule mod_auth_anon.c
  270. AddModule mod_auth_dbm.c
  271. AddModule mod_digest.c
  272. AddModule mod_proxy.c
  273. AddModule mod_cern_meta.c
  274. AddModule mod_expires.c
  275. AddModule mod_headers.c
  276. AddModule mod_usertrack.c
  277. AddModule mod_unique_id.c
  278. AddModule mod_so.c
  279. AddModule mod_setenvif.c
  280. <IfDefine SSL>
  281. AddModule mod_ssl.c
  282. </IfDefine>
  283.  
  284. #
  285. # ExtendedStatus controls whether Apache will generate "full" status
  286. # information (ExtendedStatus On) or just basic information (ExtendedStatus
  287. # Off) when the "server-status" handler is called. The default is Off.
  288. #
  289. #ExtendedStatus On
  290.  
  291. ### Section 2: 'Main' server configuration
  292. #
  293. # The directives in this section set up the values used by the 'main'
  294. # server, which responds to any requests that aren't handled by a
  295. # <VirtualHost> definition.  These values also provide defaults for
  296. # any <VirtualHost> containers you may define later in the file.
  297. #
  298. # All of these directives may appear inside <VirtualHost> containers,
  299. # in which case these default settings will be overridden for the
  300. # virtual host being defined.
  301. #
  302.  
  303. #
  304. # If your ServerType directive (set earlier in the 'Global Environment'
  305. # section) is set to "inetd", the next few directives don't have any
  306. # effect since their settings are defined by the inetd configuration.
  307. # Skip ahead to the ServerAdmin directive.
  308. #
  309.  
  310. #
  311. # Port: The port to which the standalone server listens. For
  312. # ports < 1023, you will need httpd to be run as root initially.
  313. #
  314. Port 8080
  315.  
  316. ##
  317. ##  SSL Support
  318. ##
  319. ##  When we also provide SSL we have to listen to the 
  320. ##  standard HTTP port (see above) and to the HTTPS port
  321. ##
  322. <IfDefine SSL>
  323. Listen 8080
  324. Listen 8443
  325. </IfDefine>
  326.  
  327. #
  328. # If you wish httpd to run as a different user or group, you must run
  329. # httpd as root initially and it will switch.  
  330. #
  331. # User/Group: The name (or #number) of the user/group to run httpd as.
  332. #  . On SCO (ODT 3) use "User nouser" and "Group nogroup".
  333. #  . On HPUX you may not be able to use shared memory as nobody, and the
  334. #    suggested workaround is to create a user www and use that user.
  335. #  NOTE that some kernels refuse to setgid(Group) or semctl(IPC_SET)
  336. #  when the value of (unsigned)Group is above 60000; 
  337. #  don't use Group nobody on these systems!
  338. #
  339. User nobody
  340. Group nobody
  341.  
  342. #
  343. # ServerAdmin: Your address, where problems with the server should be
  344. # e-mailed.  This address appears on some server-generated pages, such
  345. # as error documents.
  346. #
  347. #ServerAdmin sherwood@humu.engr.sgi.com
  348.  
  349. #
  350. # ServerName allows you to set a host name which is sent back to clients for
  351. # your server if it's different than the one the program would get (i.e., use
  352. # "www" instead of the host's real name).
  353. #
  354. # Note: You cannot just invent host names and hope they work. The name you 
  355. # define here must be a valid DNS name for your host. If you don't understand
  356. # this, ask your network administrator.
  357. # If your host doesn't have a registered DNS name, enter its IP address here.
  358. # You will have to access it by its address (e.g., http://123.45.67.89/)
  359. # anyway, and this will make redirections work in a sensible way.
  360. #
  361. # 127.0.0.1 is the TCP/IP local loop-back address, often named localhost. Your 
  362. # machine always knows itself by this address. If you use Apache strictly for 
  363. # local testing and development, you may use 127.0.0.1 as the server name.
  364. #
  365. #ServerName humu.engr.sgi.com
  366.  
  367. #
  368. # DocumentRoot: The directory out of which you will serve your
  369. # documents. By default, all requests are taken from this directory, but
  370. # symbolic links and aliases may be used to point to other locations.
  371. #
  372. DocumentRoot "/usr/freeware/apache/share/htdocs"
  373.  
  374. #
  375. # Each directory to which Apache has access, can be configured with respect
  376. # to which services and features are allowed and/or disabled in that
  377. # directory (and its subdirectories). 
  378. #
  379. # First, we configure the "default" to be a very restrictive set of 
  380. # permissions.  
  381. #
  382. <Directory />
  383.     Options FollowSymLinks
  384.     AllowOverride None
  385. </Directory>
  386.  
  387. #
  388. # Note that from this point forward you must specifically allow
  389. # particular features to be enabled - so if something's not working as
  390. # you might expect, make sure that you have specifically enabled it
  391. # below.
  392. #
  393.  
  394. #
  395. # This should be changed to whatever you set DocumentRoot to.
  396. #
  397. <Directory "/usr/freeware/apache/share/htdocs">
  398.  
  399. #
  400. # This may also be "None", "All", or any combination of "Indexes",
  401. # "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
  402. #
  403. # Note that "MultiViews" must be named *explicitly* --- "Options All"
  404. # doesn't give it to you.
  405. #
  406.     Options Indexes FollowSymLinks MultiViews
  407.  
  408. #
  409. # This controls which options the .htaccess files in directories can
  410. # override. Can also be "All", or any combination of "Options", "FileInfo", 
  411. # "AuthConfig", and "Limit"
  412. #
  413.     AllowOverride None
  414.  
  415. #
  416. # Controls who can get stuff from this server.
  417. #
  418.     Order allow,deny
  419.     Allow from all
  420. </Directory>
  421.  
  422. #
  423. # UserDir: The name of the directory which is appended onto a user's home
  424. # directory if a ~user request is received.
  425. #
  426. <IfModule mod_userdir.c>
  427.     UserDir public_html
  428. </IfModule>
  429.  
  430. #
  431. # Control access to UserDir directories.  The following is an example
  432. # for a site where these directories are restricted to read-only.
  433. #
  434. #<Directory /home/*/public_html>
  435. #    AllowOverride FileInfo AuthConfig Limit
  436. #    Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
  437. #    <Limit GET POST OPTIONS PROPFIND>
  438. #        Order allow,deny
  439. #        Allow from all
  440. #    </Limit>
  441. #    <LimitExcept GET POST OPTIONS PROPFIND>
  442. #        Order deny,allow
  443. #        Deny from all
  444. #    </LimitExcept>
  445. #</Directory>
  446.  
  447. #
  448. # DirectoryIndex: Name of the file or files to use as a pre-written HTML
  449. # directory index.  Separate multiple entries with spaces.
  450. #
  451. <IfModule mod_dir.c>
  452.     DirectoryIndex index.html
  453. </IfModule>
  454.  
  455. #
  456. # AccessFileName: The name of the file to look for in each directory
  457. # for access control information.
  458. #
  459. AccessFileName .htaccess
  460.  
  461. #
  462. # The following lines prevent .htaccess files from being viewed by
  463. # Web clients.  Since .htaccess files often contain authorization
  464. # information, access is disallowed for security reasons.  Comment
  465. # these lines out if you want Web visitors to see the contents of
  466. # .htaccess files.  If you change the AccessFileName directive above,
  467. # be sure to make the corresponding changes here.
  468. #
  469. # Also, folks tend to use names such as .htpasswd for password
  470. # files, so this will protect those as well.
  471. #
  472. <Files ~ "^\.ht">
  473.     Order allow,deny
  474.     Deny from all
  475.     Satisfy All
  476. </Files>
  477.  
  478. #
  479. # CacheNegotiatedDocs: By default, Apache sends "Pragma: no-cache" with each
  480. # document that was negotiated on the basis of content. This asks proxy
  481. # servers not to cache the document. Uncommenting the following line disables
  482. # this behavior, and proxies will be allowed to cache the documents.
  483. #
  484. #CacheNegotiatedDocs
  485.  
  486. #
  487. # UseCanonicalName:  (new for 1.3)  With this setting turned on, whenever
  488. # Apache needs to construct a self-referencing URL (a URL that refers back
  489. # to the server the response is coming from) it will use ServerName and
  490. # Port to form a "canonical" name.  With this setting off, Apache will
  491. # use the hostname:port that the client supplied, when possible.  This
  492. # also affects SERVER_NAME and SERVER_PORT in CGI scripts.
  493. #
  494. UseCanonicalName On
  495.  
  496. #
  497. # TypesConfig describes where the mime.types file (or equivalent) is
  498. # to be found.
  499. #
  500. <IfModule mod_mime.c>
  501.     TypesConfig /usr/freeware/apache/etc/mime.types
  502. </IfModule>
  503.  
  504. #
  505. # DefaultType is the default MIME type the server will use for a document
  506. # if it cannot otherwise determine one, such as from filename extensions.
  507. # If your server contains mostly text or HTML documents, "text/plain" is
  508. # a good value.  If most of your content is binary, such as applications
  509. # or images, you may want to use "application/octet-stream" instead to
  510. # keep browsers from trying to display binary files as though they are
  511. # text.
  512. #
  513. DefaultType text/plain
  514.  
  515. #
  516. # The mod_mime_magic module allows the server to use various hints from the
  517. # contents of the file itself to determine its type.  The MIMEMagicFile
  518. # directive tells the module where the hint definitions are located.
  519. # mod_mime_magic is not part of the default server (you have to add
  520. # it yourself with a LoadModule [see the DSO paragraph in the 'Global
  521. # Environment' section], or recompile the server and include mod_mime_magic
  522. # as part of the configuration), so it's enclosed in an <IfModule> container.
  523. # This means that the MIMEMagicFile directive will only be processed if the
  524. # module is part of the server.
  525. #
  526. <IfModule mod_mime_magic.c>
  527.     MIMEMagicFile /usr/freeware/apache/etc/magic
  528. </IfModule>
  529.  
  530. #
  531. # HostnameLookups: Log the names of clients or just their IP addresses
  532. # e.g., www.apache.org (on) or 204.62.129.132 (off).
  533. # The default is off because it'd be overall better for the net if people
  534. # had to knowingly turn this feature on, since enabling it means that
  535. # each client request will result in AT LEAST one lookup request to the
  536. # nameserver.
  537. #
  538. HostnameLookups Off
  539.  
  540. #
  541. # ErrorLog: The location of the error log file.
  542. # If you do not specify an ErrorLog directive within a <VirtualHost>
  543. # container, error messages relating to that virtual host will be
  544. # logged here.  If you *do* define an error logfile for a <VirtualHost>
  545. # container, that host's errors will be logged there and not here.
  546. #
  547. ErrorLog /usr/freeware/apache/var/log/error_log
  548.  
  549. #
  550. # LogLevel: Control the number of messages logged to the error_log.
  551. # Possible values include: debug, info, notice, warn, error, crit,
  552. # alert, emerg.
  553. #
  554. LogLevel warn
  555.  
  556. #
  557. # The following directives define some format nicknames for use with
  558. # a CustomLog directive (see below).
  559. #
  560. LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
  561. LogFormat "%h %l %u %t \"%r\" %>s %b" common
  562. LogFormat "%{Referer}i -> %U" referer
  563. LogFormat "%{User-agent}i" agent
  564.  
  565. #
  566. # The location and format of the access logfile (Common Logfile Format).
  567. # If you do not define any access logfiles within a <VirtualHost>
  568. # container, they will be logged here.  Contrariwise, if you *do*
  569. # define per-<VirtualHost> access logfiles, transactions will be
  570. # logged therein and *not* in this file.
  571. #
  572. CustomLog /usr/freeware/apache/var/log/access_log common
  573.  
  574. #
  575. # If you would like to have agent and referer logfiles, uncomment the
  576. # following directives.
  577. #
  578. #CustomLog /usr/freeware/apache/var/log/referer_log referer
  579. #CustomLog /usr/freeware/apache/var/log/agent_log agent
  580.  
  581. #
  582. # If you prefer a single logfile with access, agent, and referer information
  583. # (Combined Logfile Format) you can use the following directive.
  584. #
  585. #CustomLog /usr/freeware/apache/var/log/access_log combined
  586.  
  587. #
  588. # Optionally add a line containing the server version and virtual host
  589. # name to server-generated pages (error documents, FTP directory listings,
  590. # mod_status and mod_info output etc., but not CGI generated documents).
  591. # Set to "EMail" to also include a mailto: link to the ServerAdmin.
  592. # Set to one of:  On | Off | EMail
  593. #
  594. ServerSignature On
  595.  
  596. # EBCDIC configuration:
  597. # (only for mainframes using the EBCDIC codeset, currently one of:
  598. # Fujitsu-Siemens' BS2000/OSD, IBM's OS/390 and IBM's TPF)!!
  599. # The following default configuration assumes that "text files"
  600. # are stored in EBCDIC (so that you can operate on them using the
  601. # normal POSIX tools like grep and sort) while "binary files" are
  602. # stored with identical octets as on an ASCII machine.
  603. #
  604. # The directives are evaluated in configuration file order, with
  605. # the EBCDICConvert directives applied before EBCDICConvertByType.
  606. #
  607. # If you want to have ASCII HTML documents and EBCDIC HTML documents
  608. # at the same time, you can use the file extension to force
  609. # conversion off for the ASCII documents:
  610. # > AddType       text/html .ahtml
  611. # > EBCDICConvert Off=InOut .ahtml
  612. #
  613. # EBCDICConvertByType  On=InOut text/* message/* multipart/*
  614. # EBCDICConvertByType  On=In    application/x-www-form-urlencoded
  615. # EBCDICConvertByType  On=InOut application/postscript model/vrml
  616. # EBCDICConvertByType Off=InOut */*
  617.  
  618.  
  619. #
  620. # Aliases: Add here as many aliases as you need (with no limit). The format is 
  621. # Alias fakename realname
  622. #
  623. <IfModule mod_alias.c>
  624.  
  625.     #
  626.     # Note that if you include a trailing / on fakename then the server will
  627.     # require it to be present in the URL.  So "/icons" isn't aliased in this
  628.     # example, only "/icons/".  If the fakename is slash-terminated, then the 
  629.     # realname must also be slash terminated, and if the fakename omits the 
  630.     # trailing slash, the realname must also omit it.
  631.     #
  632.     Alias /icons/ "/usr/freeware/apache/share/icons/"
  633.  
  634.     <Directory "/usr/freeware/apache/share/icons">
  635.         Options Indexes MultiViews
  636.         AllowOverride None
  637.         Order allow,deny
  638.         Allow from all
  639.     </Directory>
  640.  
  641.     # This Alias will project the on-line documentation tree under /manual/
  642.     # even if you change the DocumentRoot. Comment it if you don't want to 
  643.     # provide access to the on-line documentation.
  644.     #
  645.     Alias /manual/ "/usr/freeware/apache/share/htdocs/manual/"
  646.  
  647.     <Directory "/usr/freeware/apache/share/htdocs/manual">
  648.         Options Indexes FollowSymlinks MultiViews
  649.         AllowOverride None
  650.         Order allow,deny
  651.         Allow from all
  652.     </Directory>
  653.  
  654.     #
  655.     # ScriptAlias: This controls which directories contain server scripts.
  656.     # ScriptAliases are essentially the same as Aliases, except that
  657.     # documents in the realname directory are treated as applications and
  658.     # run by the server when requested rather than as documents sent to the client.
  659.     # The same rules about trailing "/" apply to ScriptAlias directives as to
  660.     # Alias.
  661.     #
  662.     ScriptAlias /cgi-bin/ "/usr/freeware/apache/share/cgi-bin/"
  663.  
  664.     #
  665.     # "/usr/freeware/apache/share/cgi-bin" should be changed to whatever your ScriptAliased
  666.     # CGI directory exists, if you have that configured.
  667.     #
  668.     <Directory "/usr/freeware/apache/share/cgi-bin">
  669.         AllowOverride None
  670.         Options None
  671.         Order allow,deny
  672.         Allow from all
  673.     </Directory>
  674.  
  675. </IfModule>
  676. # End of aliases.
  677.  
  678. #
  679. # Redirect allows you to tell clients about documents which used to exist in
  680. # your server's namespace, but do not anymore. This allows you to tell the
  681. # clients where to look for the relocated document.
  682. # Format: Redirect old-URI new-URL
  683. #
  684.  
  685. #
  686. # Directives controlling the display of server-generated directory listings.
  687. #
  688. <IfModule mod_autoindex.c>
  689.  
  690.     #
  691.     # FancyIndexing is whether you want fancy directory indexing or standard
  692.     #
  693.     IndexOptions FancyIndexing
  694.  
  695.     #
  696.     # AddIcon* directives tell the server which icon to show for different
  697.     # files or filename extensions.  These are only displayed for
  698.     # FancyIndexed directories.
  699.     #
  700.     AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
  701.  
  702.     AddIconByType (TXT,/icons/text.gif) text/*
  703.     AddIconByType (IMG,/icons/image2.gif) image/*
  704.     AddIconByType (SND,/icons/sound2.gif) audio/*
  705.     AddIconByType (VID,/icons/movie.gif) video/*
  706.  
  707.     AddIcon /icons/binary.gif .bin .exe
  708.     AddIcon /icons/binhex.gif .hqx
  709.     AddIcon /icons/tar.gif .tar
  710.     AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
  711.     AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
  712.     AddIcon /icons/a.gif .ps .ai .eps
  713.     AddIcon /icons/layout.gif .html .shtml .htm .pdf
  714.     AddIcon /icons/text.gif .txt
  715.     AddIcon /icons/c.gif .c
  716.     AddIcon /icons/p.gif .pl .py
  717.     AddIcon /icons/f.gif .for
  718.     AddIcon /icons/dvi.gif .dvi
  719.     AddIcon /icons/uuencoded.gif .uu
  720.     AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
  721.     AddIcon /icons/tex.gif .tex
  722.     AddIcon /icons/bomb.gif core
  723.  
  724.     AddIcon /icons/back.gif ..
  725.     AddIcon /icons/hand.right.gif README
  726.     AddIcon /icons/folder.gif ^^DIRECTORY^^
  727.     AddIcon /icons/blank.gif ^^BLANKICON^^
  728.  
  729.     #
  730.     # DefaultIcon is which icon to show for files which do not have an icon
  731.     # explicitly set.
  732.     #
  733.     DefaultIcon /icons/unknown.gif
  734.  
  735.     #
  736.     # AddDescription allows you to place a short description after a file in
  737.     # server-generated indexes.  These are only displayed for FancyIndexed
  738.     # directories.
  739.     # Format: AddDescription "description" filename
  740.     #
  741.     #AddDescription "GZIP compressed document" .gz
  742.     #AddDescription "tar archive" .tar
  743.     #AddDescription "GZIP compressed tar archive" .tgz
  744.  
  745.     #
  746.     # ReadmeName is the name of the README file the server will look for by
  747.     # default, and append to directory listings.
  748.     #
  749.     # HeaderName is the name of a file which should be prepended to
  750.     # directory indexes. 
  751.     #
  752.     # If MultiViews are amongst the Options in effect, the server will
  753.     # first look for name.html and include it if found.  If name.html
  754.     # doesn't exist, the server will then look for name.txt and include
  755.     # it as plaintext if found.
  756.     #
  757.     ReadmeName README
  758.     HeaderName HEADER
  759.  
  760.     #
  761.     # IndexIgnore is a set of filenames which directory indexing should ignore
  762.     # and not include in the listing.  Shell-style wildcarding is permitted.
  763.     #
  764.     IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
  765.  
  766. </IfModule>
  767. # End of indexing directives.
  768.  
  769. #
  770. # Document types.
  771. #
  772. <IfModule mod_mime.c>
  773.  
  774.     #
  775.     # AddEncoding allows you to have certain browsers (Mosaic/X 2.1+) uncompress
  776.     # information on the fly. Note: Not all browsers support this.
  777.     # Despite the name similarity, the following Add* directives have nothing
  778.     # to do with the FancyIndexing customization directives above.
  779.     #
  780.     AddEncoding x-compress Z
  781.     AddEncoding x-gzip gz tgz
  782.  
  783.     #
  784.     # AddLanguage allows you to specify the language of a document. You can
  785.     # then use content negotiation to give a browser a file in a language
  786.     # it can understand.  
  787.     #
  788.     # Note 1: The suffix does not have to be the same as the language 
  789.     # keyword --- those with documents in Polish (whose net-standard 
  790.     # language code is pl) may wish to use "AddLanguage pl .po" to 
  791.     # avoid the ambiguity with the common suffix for perl scripts.
  792.     #
  793.     # Note 2: The example entries below illustrate that in quite
  794.     # some cases the two character 'Language' abbreviation is not
  795.     # identical to the two character 'Country' code for its country,
  796.     # E.g. 'Danmark/dk' versus 'Danish/da'.
  797.     #
  798.     # Note 3: In the case of 'ltz' we violate the RFC by using a three char 
  799.     # specifier. But there is 'work in progress' to fix this and get 
  800.     # the reference data for rfc1766 cleaned up.
  801.     #
  802.     # Danish (da) - Dutch (nl) - English (en) - Estonian (ee)
  803.     # French (fr) - German (de) - Greek-Modern (el)
  804.     # Italian (it) - Korean (kr) - Norwegian (no) - Norwegian Nynorsk (nn)
  805.     # Portugese (pt) - Luxembourgeois* (ltz)
  806.     # Spanish (es) - Swedish (sv) - Catalan (ca) - Czech(cz)
  807.     # Polish (pl) - Brazilian Portuguese (pt-br) - Japanese (ja)
  808.     # Russian (ru)
  809.     #
  810.     AddLanguage da .dk
  811.     AddLanguage nl .nl
  812.     AddLanguage en .en
  813.     AddLanguage et .ee
  814.     AddLanguage fr .fr
  815.     AddLanguage de .de
  816.     AddLanguage el .el
  817.     AddLanguage he .he
  818.     AddCharset ISO-8859-8 .iso8859-8
  819.     AddLanguage it .it
  820.     AddLanguage ja .ja
  821.     AddCharset ISO-2022-JP .jis
  822.     AddLanguage kr .kr
  823.     AddCharset ISO-2022-KR .iso-kr
  824.     AddLanguage nn .nn
  825.     AddLanguage no .no
  826.     AddLanguage pl .po
  827.     AddCharset ISO-8859-2 .iso-pl
  828.     AddLanguage pt .pt
  829.     AddLanguage pt-br .pt-br
  830.     AddLanguage ltz .lu
  831.     AddLanguage ca .ca
  832.     AddLanguage es .es
  833.     AddLanguage sv .sv
  834.     AddLanguage cz .cz
  835.     AddLanguage ru .ru
  836.     AddLanguage zh-tw .tw
  837.     AddLanguage tw .tw
  838.     AddCharset Big5         .Big5    .big5
  839.     AddCharset WINDOWS-1251 .cp-1251
  840.     AddCharset CP866        .cp866
  841.     AddCharset ISO-8859-5   .iso-ru
  842.     AddCharset KOI8-R       .koi8-r
  843.     AddCharset UCS-2        .ucs2
  844.     AddCharset UCS-4        .ucs4
  845.     AddCharset UTF-8        .utf8
  846.  
  847.     # LanguagePriority allows you to give precedence to some languages
  848.     # in case of a tie during content negotiation.
  849.     #
  850.     # Just list the languages in decreasing order of preference. We have
  851.     # more or less alphabetized them here. You probably want to change this.
  852.     #
  853.     <IfModule mod_negotiation.c>
  854.         LanguagePriority en da nl et fr de el it ja kr no pl pt pt-br ru ltz ca es sv tw
  855.     </IfModule>
  856.  
  857.     #
  858.     # AddType allows you to tweak mime.types without actually editing it, or to
  859.     # make certain files to be certain types.
  860.     #
  861.     AddType application/x-tar .tgz
  862.  
  863.     #
  864.     # AddHandler allows you to map certain file extensions to "handlers",
  865.     # actions unrelated to filetype. These can be either built into the server
  866.     # or added with the Action command (see below)
  867.     #
  868.     # If you want to use server side includes, or CGI outside
  869.     # ScriptAliased directories, uncomment the following lines.
  870.     #
  871.     # To use CGI scripts:
  872.     #
  873.     #AddHandler cgi-script .cgi
  874.  
  875.     #
  876.     # To use server-parsed HTML files
  877.     #
  878.     #AddType text/html .shtml
  879.     #AddHandler server-parsed .shtml
  880.  
  881.     #
  882.     # Uncomment the following line to enable Apache's send-asis HTTP file
  883.     # feature
  884.     #
  885.     #AddHandler send-as-is asis
  886.  
  887.     #
  888.     # If you wish to use server-parsed imagemap files, use
  889.     #
  890.     #AddHandler imap-file map
  891.  
  892.     #
  893.     # To enable type maps, you might want to use
  894.     #
  895.     #AddHandler type-map var
  896.  
  897. </IfModule>
  898. # End of document types.
  899.  
  900. #
  901. # Action lets you define media types that will execute a script whenever
  902. # a matching file is called. This eliminates the need for repeated URL
  903. # pathnames for oft-used CGI file processors.
  904. # Format: Action media/type /cgi-script/location
  905. # Format: Action handler-name /cgi-script/location
  906. #
  907.  
  908. #
  909. # MetaDir: specifies the name of the directory in which Apache can find
  910. # meta information files. These files contain additional HTTP headers
  911. # to include when sending the document
  912. #
  913. #MetaDir .web
  914.  
  915. #
  916. # MetaSuffix: specifies the file name suffix for the file containing the
  917. # meta information.
  918. #
  919. #MetaSuffix .meta
  920.  
  921. #
  922. # Customizable error response (Apache style)
  923. #  these come in three flavors
  924. #
  925. #    1) plain text
  926. #ErrorDocument 500 "The server made a boo boo.
  927. #  n.b.  the single leading (") marks it as text, it does not get output
  928. #
  929. #    2) local redirects
  930. #ErrorDocument 404 /missing.html
  931. #  to redirect to local URL /missing.html
  932. #ErrorDocument 404 /cgi-bin/missing_handler.pl
  933. #  N.B.: You can redirect to a script or a document using server-side-includes.
  934. #
  935. #    3) external redirects
  936. #ErrorDocument 402 http://some.other-server.com/subscription_info.html
  937. #  N.B.: Many of the environment variables associated with the original
  938. #  request will *not* be available to such a script.
  939.  
  940. #
  941. # Customize behaviour based on the browser
  942. #
  943. <IfModule mod_setenvif.c>
  944.  
  945.     #
  946.     # The following directives modify normal HTTP response behavior.
  947.     # The first directive disables keepalive for Netscape 2.x and browsers that
  948.     # spoof it. There are known problems with these browser implementations.
  949.     # The second directive is for Microsoft Internet Explorer 4.0b2
  950.     # which has a broken HTTP/1.1 implementation and does not properly
  951.     # support keepalive when it is used on 301 or 302 (redirect) responses.
  952.     #
  953.     BrowserMatch "Mozilla/2" nokeepalive
  954.     BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
  955.  
  956.     #
  957.     # The following directive disables HTTP/1.1 responses to browsers which
  958.     # are in violation of the HTTP/1.0 spec by not being able to grok a
  959.     # basic 1.1 response.
  960.     #
  961.     BrowserMatch "RealPlayer 4\.0" force-response-1.0
  962.     BrowserMatch "Java/1\.0" force-response-1.0
  963.     BrowserMatch "JDK/1\.0" force-response-1.0
  964.  
  965. </IfModule>
  966. # End of browser customization directives
  967.  
  968. #
  969. # Allow server status reports, with the URL of http://servername/server-status
  970. # Change the ".your-domain.com" to match your domain to enable.
  971. #
  972. #<Location /server-status>
  973. #    SetHandler server-status
  974. #    Order deny,allow
  975. #    Deny from all
  976. #    Allow from .your-domain.com
  977. #</Location>
  978.  
  979. #
  980. # Allow remote server configuration reports, with the URL of
  981. # http://servername/server-info (requires that mod_info.c be loaded).
  982. # Change the ".your-domain.com" to match your domain to enable.
  983. #
  984. #<Location /server-info>
  985. #    SetHandler server-info
  986. #    Order deny,allow
  987. #    Deny from all
  988. #    Allow from .your-domain.com
  989. #</Location>
  990.  
  991. #
  992. # There have been reports of people trying to abuse an old bug from pre-1.1
  993. # days.  This bug involved a CGI script distributed as a part of Apache.
  994. # By uncommenting these lines you can redirect these attacks to a logging 
  995. # script on phf.apache.org.  Or, you can record them yourself, using the script
  996. # support/phf_abuse_log.cgi.
  997. #
  998. #<Location /cgi-bin/phf*>
  999. #    Deny from all
  1000. #    ErrorDocument 403 http://phf.apache.org/phf_abuse_log.cgi
  1001. #</Location>
  1002.  
  1003. #
  1004. # Proxy Server directives. Uncomment the following lines to
  1005. # enable the proxy server:
  1006. #
  1007. #<IfModule mod_proxy.c>
  1008. #    ProxyRequests On
  1009.  
  1010. #    <Directory proxy:*>
  1011. #        Order deny,allow
  1012. #        Deny from all
  1013. #        Allow from .your-domain.com
  1014. #    </Directory>
  1015.  
  1016.     #
  1017.     # Enable/disable the handling of HTTP/1.1 "Via:" headers.
  1018.     # ("Full" adds the server version; "Block" removes all outgoing Via: headers)
  1019.     # Set to one of: Off | On | Full | Block
  1020.     #
  1021. #    ProxyVia On
  1022.  
  1023.     #
  1024.     # To enable the cache as well, edit and uncomment the following lines:
  1025.     # (no cacheing without CacheRoot)
  1026.     #
  1027. #    CacheRoot "/usr/freeware/apache/var/proxy"
  1028. #    CacheSize 5
  1029. #    CacheGcInterval 4
  1030. #    CacheMaxExpire 24
  1031. #    CacheLastModifiedFactor 0.1
  1032. #    CacheDefaultExpire 1
  1033. #    NoCache a-domain.com another-domain.edu joes.garage-sale.com
  1034.  
  1035. #</IfModule>
  1036. # End of proxy directives.
  1037.  
  1038. ### Section 3: Virtual Hosts
  1039. #
  1040. # VirtualHost: If you want to maintain multiple domains/hostnames on your
  1041. # machine you can setup VirtualHost containers for them. Most configurations
  1042. # use only name-based virtual hosts so the server doesn't need to worry about
  1043. # IP addresses. This is indicated by the asterisks in the directives below.
  1044. #
  1045. # Please see the documentation at <URL:http://www.apache.org/docs/vhosts/>
  1046. # for further details before you try to setup virtual hosts.
  1047. #
  1048. # You may use the command line option '-S' to verify your virtual host
  1049. # configuration.
  1050.  
  1051. #
  1052. # Use name-based virtual hosting.
  1053. #
  1054. #NameVirtualHost *
  1055.  
  1056. #
  1057. # VirtualHost example:
  1058. # Almost any Apache directive may go into a VirtualHost container.
  1059. # The first VirtualHost section is used for requests without a known
  1060. # server name.
  1061. #
  1062. #<VirtualHost *>
  1063. #    ServerAdmin webmaster@dummy-host.example.com
  1064. #    DocumentRoot /www/docs/dummy-host.example.com
  1065. #    ServerName dummy-host.example.com
  1066. #    ErrorLog logs/dummy-host.example.com-error_log
  1067. #    CustomLog logs/dummy-host.example.com-access_log common
  1068. #</VirtualHost>
  1069.  
  1070. #<VirtualHost _default_:*>
  1071. #</VirtualHost>
  1072.  
  1073. ##
  1074. ##  SSL Global Context
  1075. ##
  1076. ##  All SSL configuration in this context applies both to
  1077. ##  the main server and all SSL-enabled virtual hosts.
  1078. ##
  1079.  
  1080. #
  1081. #   Some MIME-types for downloading Certificates and CRLs
  1082. #
  1083. <IfDefine SSL>
  1084. AddType application/x-x509-ca-cert .crt
  1085. AddType application/x-pkcs7-crl    .crl
  1086. </IfDefine>
  1087.  
  1088. <IfModule mod_ssl.c>
  1089.  
  1090. #   Pass Phrase Dialog:
  1091. #   Configure the pass phrase gathering process.
  1092. #   The filtering dialog program (`builtin' is a internal
  1093. #   terminal dialog) has to provide the pass phrase on stdout.
  1094. SSLPassPhraseDialog  builtin
  1095.  
  1096. #   Inter-Process Session Cache:
  1097. #   Configure the SSL Session Cache: First the mechanism 
  1098. #   to use and second the expiring timeout (in seconds).
  1099. #SSLSessionCache        none
  1100. #SSLSessionCache        shmht:/usr/freeware/apache/var/run/ssl_scache(512000)
  1101. #SSLSessionCache        shmcb:/usr/freeware/apache/var/run/ssl_scache(512000)
  1102. SSLSessionCache         dbm:/usr/freeware/apache/var/run/ssl_scache
  1103. SSLSessionCacheTimeout  300
  1104.  
  1105. #   Semaphore:
  1106. #   Configure the path to the mutual exclusion semaphore the
  1107. #   SSL engine uses internally for inter-process synchronization. 
  1108. SSLMutex  file:/usr/freeware/apache/var/run/ssl_mutex
  1109.  
  1110. #   Pseudo Random Number Generator (PRNG):
  1111. #   Configure one or more sources to seed the PRNG of the 
  1112. #   SSL library. The seed data should be of good random quality.
  1113. #   WARNING! On some platforms /dev/random blocks if not enough entropy
  1114. #   is available. This means you then cannot use the /dev/random device
  1115. #   because it would lead to very long connection times (as long as
  1116. #   it requires to make more entropy available). But usually those
  1117. #   platforms additionally provide a /dev/urandom device which doesn't
  1118. #   block. So, if available, use this one instead. Read the mod_ssl User
  1119. #   Manual for more details.
  1120. SSLRandomSeed startup builtin
  1121. SSLRandomSeed connect builtin
  1122. #SSLRandomSeed startup file:/dev/random  512
  1123. #SSLRandomSeed startup file:/dev/urandom 512
  1124. #SSLRandomSeed connect file:/dev/random  512
  1125. #SSLRandomSeed connect file:/dev/urandom 512
  1126.  
  1127. #   Logging:
  1128. #   The home of the dedicated SSL protocol logfile. Errors are
  1129. #   additionally duplicated in the general error log file.  Put
  1130. #   this somewhere where it cannot be used for symlink attacks on
  1131. #   a real server (i.e. somewhere where only root can write).
  1132. #   Log levels are (ascending order: higher ones include lower ones):
  1133. #   none, error, warn, info, trace, debug.
  1134. SSLLog      /usr/freeware/apache/var/log/ssl_engine_log
  1135. SSLLogLevel info
  1136.  
  1137. </IfModule>
  1138.  
  1139. <IfDefine SSL>
  1140.  
  1141. ##
  1142. ## SSL Virtual Host Context
  1143. ##
  1144.  
  1145. <VirtualHost _default_:8443>
  1146.  
  1147. #  General setup for the virtual host
  1148. DocumentRoot "/usr/freeware/apache/share/htdocs"
  1149. #ServerName humu.engr.sgi.com
  1150. #ServerAdmin sherwood@humu.engr.sgi.com
  1151. ErrorLog /usr/freeware/apache/var/log/error_log
  1152. TransferLog /usr/freeware/apache/var/log/access_log
  1153.  
  1154. #   SSL Engine Switch:
  1155. #   Enable/Disable SSL for this virtual host.
  1156. SSLEngine on
  1157.  
  1158. #   SSL Cipher Suite:
  1159. #   List the ciphers that the client is permitted to negotiate.
  1160. #   See the mod_ssl documentation for a complete list.
  1161. SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
  1162.  
  1163. #   Server Certificate:
  1164. #   Point SSLCertificateFile at a PEM encoded certificate.  If
  1165. #   the certificate is encrypted, then you will be prompted for a
  1166. #   pass phrase.  Note that a kill -HUP will prompt again. A test
  1167. #   certificate can be generated with `make certificate' under
  1168. #   built time. Keep in mind that if you've both a RSA and a DSA
  1169. #   certificate you can configure both in parallel (to also allow
  1170. #   the use of DSA ciphers, etc.)
  1171. SSLCertificateFile /usr/freeware/apache/etc/ssl.crt/server.crt
  1172. #SSLCertificateFile /usr/freeware/apache/etc/ssl.crt/server-dsa.crt
  1173.  
  1174. #   Server Private Key:
  1175. #   If the key is not combined with the certificate, use this
  1176. #   directive to point at the key file.  Keep in mind that if
  1177. #   you've both a RSA and a DSA private key you can configure
  1178. #   both in parallel (to also allow the use of DSA ciphers, etc.)
  1179. SSLCertificateKeyFile /usr/freeware/apache/etc/ssl.key/server.key
  1180. #SSLCertificateKeyFile /usr/freeware/apache/etc/ssl.key/server-dsa.key
  1181.  
  1182. #   Server Certificate Chain:
  1183. #   Point SSLCertificateChainFile at a file containing the
  1184. #   concatenation of PEM encoded CA certificates which form the
  1185. #   certificate chain for the server certificate. Alternatively
  1186. #   the referenced file can be the same as SSLCertificateFile
  1187. #   when the CA certificates are directly appended to the server
  1188. #   certificate for convinience.
  1189. #SSLCertificateChainFile /usr/freeware/apache/etc/ssl.crt/ca.crt
  1190.  
  1191. #   Certificate Authority (CA):
  1192. #   Set the CA certificate verification path where to find CA
  1193. #   certificates for client authentication or alternatively one
  1194. #   huge file containing all of them (file must be PEM encoded)
  1195. #   Note: Inside SSLCACertificatePath you need hash symlinks
  1196. #         to point to the certificate files. Use the provided
  1197. #         Makefile to update the hash symlinks after changes.
  1198. #SSLCACertificatePath /usr/freeware/apache/etc/ssl.crt
  1199. #SSLCACertificateFile /usr/freeware/apache/etc/ssl.crt/ca-bundle.crt
  1200.  
  1201. #   Certificate Revocation Lists (CRL):
  1202. #   Set the CA revocation path where to find CA CRLs for client
  1203. #   authentication or alternatively one huge file containing all
  1204. #   of them (file must be PEM encoded)
  1205. #   Note: Inside SSLCARevocationPath you need hash symlinks
  1206. #         to point to the certificate files. Use the provided
  1207. #         Makefile to update the hash symlinks after changes.
  1208. #SSLCARevocationPath /usr/freeware/apache/etc/ssl.crl
  1209. #SSLCARevocationFile /usr/freeware/apache/etc/ssl.crl/ca-bundle.crl
  1210.  
  1211. #   Client Authentication (Type):
  1212. #   Client certificate verification type and depth.  Types are
  1213. #   none, optional, require and optional_no_ca.  Depth is a
  1214. #   number which specifies how deeply to verify the certificate
  1215. #   issuer chain before deciding the certificate is not valid.
  1216. #SSLVerifyClient require
  1217. #SSLVerifyDepth  10
  1218.  
  1219. #   Access Control:
  1220. #   With SSLRequire you can do per-directory access control based
  1221. #   on arbitrary complex boolean expressions containing server
  1222. #   variable checks and other lookup directives.  The syntax is a
  1223. #   mixture between C and Perl.  See the mod_ssl documentation
  1224. #   for more details.
  1225. #<Location />
  1226. #SSLRequire (    %{SSL_CIPHER} !~ m/^(EXP|NULL)/ \
  1227. #            and %{SSL_CLIENT_S_DN_O} eq "Snake Oil, Ltd." \
  1228. #            and %{SSL_CLIENT_S_DN_OU} in {"Staff", "CA", "Dev"} \
  1229. #            and %{TIME_WDAY} >= 1 and %{TIME_WDAY} <= 5 \
  1230. #            and %{TIME_HOUR} >= 8 and %{TIME_HOUR} <= 20       ) \
  1231. #           or %{REMOTE_ADDR} =~ m/^192\.76\.162\.[0-9]+$/
  1232. #</Location>
  1233.  
  1234. #   SSL Engine Options:
  1235. #   Set various options for the SSL engine.
  1236. #   o FakeBasicAuth:
  1237. #     Translate the client X.509 into a Basic Authorisation.  This means that
  1238. #     the standard Auth/DBMAuth methods can be used for access control.  The
  1239. #     user name is the `one line' version of the client's X.509 certificate.
  1240. #     Note that no password is obtained from the user. Every entry in the user
  1241. #     file needs this password: `xxj31ZMTZzkVA'.
  1242. #   o ExportCertData:
  1243. #     This exports two additional environment variables: SSL_CLIENT_CERT and
  1244. #     SSL_SERVER_CERT. These contain the PEM-encoded certificates of the
  1245. #     server (always existing) and the client (only existing when client
  1246. #     authentication is used). This can be used to import the certificates
  1247. #     into CGI scripts.
  1248. #   o StdEnvVars:
  1249. #     This exports the standard SSL/TLS related `SSL_*' environment variables.
  1250. #     Per default this exportation is switched off for performance reasons,
  1251. #     because the extraction step is an expensive operation and is usually
  1252. #     useless for serving static content. So one usually enables the
  1253. #     exportation for CGI and SSI requests only.
  1254. #   o CompatEnvVars:
  1255. #     This exports obsolete environment variables for backward compatibility
  1256. #     to Apache-SSL 1.x, mod_ssl 2.0.x, Sioux 1.0 and Stronghold 2.x. Use this
  1257. #     to provide compatibility to existing CGI scripts.
  1258. #   o StrictRequire:
  1259. #     This denies access when "SSLRequireSSL" or "SSLRequire" applied even
  1260. #     under a "Satisfy any" situation, i.e. when it applies access is denied
  1261. #     and no other module can change it.
  1262. #   o OptRenegotiate:
  1263. #     This enables optimized SSL connection renegotiation handling when SSL
  1264. #     directives are used in per-directory context. 
  1265. #SSLOptions +FakeBasicAuth +ExportCertData +CompatEnvVars +StrictRequire
  1266. <Files ~ "\.(cgi|shtml|phtml|php3?)$">
  1267.     SSLOptions +StdEnvVars
  1268. </Files>
  1269. <Directory "/usr/freeware/apache/share/cgi-bin">
  1270.     SSLOptions +StdEnvVars
  1271. </Directory>
  1272.  
  1273. #   SSL Protocol Adjustments:
  1274. #   The safe and default but still SSL/TLS standard compliant shutdown
  1275. #   approach is that mod_ssl sends the close notify alert but doesn't wait for
  1276. #   the close notify alert from client. When you need a different shutdown
  1277. #   approach you can use one of the following variables:
  1278. #   o ssl-unclean-shutdown:
  1279. #     This forces an unclean shutdown when the connection is closed, i.e. no
  1280. #     SSL close notify alert is send or allowed to received.  This violates
  1281. #     the SSL/TLS standard but is needed for some brain-dead browsers. Use
  1282. #     this when you receive I/O errors because of the standard approach where
  1283. #     mod_ssl sends the close notify alert.
  1284. #   o ssl-accurate-shutdown:
  1285. #     This forces an accurate shutdown when the connection is closed, i.e. a
  1286. #     SSL close notify alert is send and mod_ssl waits for the close notify
  1287. #     alert of the client. This is 100% SSL/TLS standard compliant, but in
  1288. #     practice often causes hanging connections with brain-dead browsers. Use
  1289. #     this only for browsers where you know that their SSL implementation
  1290. #     works correctly. 
  1291. #   Notice: Most problems of broken clients are also related to the HTTP
  1292. #   keep-alive facility, so you usually additionally want to disable
  1293. #   keep-alive for those clients, too. Use variable "nokeepalive" for this.
  1294. #   Similarly, one has to force some clients to use HTTP/1.0 to workaround
  1295. #   their broken HTTP/1.1 implementation. Use variables "downgrade-1.0" and
  1296. #   "force-response-1.0" for this.
  1297. SetEnvIf User-Agent ".*MSIE.*" \
  1298.          nokeepalive ssl-unclean-shutdown \
  1299.          downgrade-1.0 force-response-1.0
  1300.  
  1301. #   Per-Server Logging:
  1302. #   The home of a custom SSL log file. Use this when you want a
  1303. #   compact non-error SSL logfile on a virtual host basis.
  1304. CustomLog /usr/freeware/apache/var/log/ssl_request_log \
  1305.           "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
  1306.  
  1307. </VirtualHost>                                  
  1308.  
  1309. </IfDefine>
  1310.  
  1311.